home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / WORDPAD.PAK / FORMATPA.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  48 lines

  1. // formatpa.h : header file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CFormatParaDlg dialog
  15.  
  16. class CFormatParaDlg : public CCSDialog
  17. {
  18. // Construction
  19. public:
  20.     CFormatParaDlg(PARAFORMAT& pf, CWnd* pParent = NULL);   // standard constructor
  21.     PARAFORMAT m_pf;
  22.  
  23. // Attributes
  24.     int m_nWordWrap;
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(CFormatParaDlg)
  28.     enum { IDD = IDD_FORMAT_PARA };
  29.     int     m_nAlignment;
  30.     int        m_nFirst;
  31.     int        m_nLeft;
  32.     int        m_nRight;
  33.     //}}AFX_DATA
  34.  
  35. // Implementation
  36. protected:
  37.     static const DWORD m_nHelpIDs[];
  38.     virtual const DWORD* GetHelpIDs() {return m_nHelpIDs;}
  39.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40.     virtual void OnOK();
  41.  
  42.     // Generated message map functions
  43.     //{{AFX_MSG(CFormatParaDlg)
  44.     virtual BOOL OnInitDialog();
  45.     //}}AFX_MSG
  46.     DECLARE_MESSAGE_MAP()
  47. };
  48.